home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / exampleCode / opengl / GLR / glrduck / glrduck.h < prev    next >
C/C++ Source or Header  |  1996-11-11  |  1KB  |  43 lines

  1. //////////////////////////////////////////////////////////////
  2. //
  3. // Header file for glrduck.c++
  4. //
  5. //    This class is a subclass of VkApp
  6. //
  7. // Normally, very little in this file should need to be changed.
  8. // Create/add/modify menus using RapidApp.
  9. //
  10. // Restrict changes to those sections between
  11. // the "//--- Start/End editable code block" markers
  12. // Doing so will allow you to make changes using RapidApp
  13. // without losing any changes you may have made manually
  14. //
  15. //////////////////////////////////////////////////////////////
  16. #ifndef GLRDUCK_H
  17. #define GLRDUCK_H
  18. #include <Vk/VkApp.h>
  19.  
  20. class glrduckMainWindow;
  21.  
  22. class glrduck : public VkApp {
  23. public:
  24.   glrduck::glrduck(char             *appClassName,
  25.              int              *arg_c, 
  26.              char            **arg_v,
  27.              XrmOptionDescRec *optionList       = NULL,
  28.              int               sizeOfOptionList = 0);
  29.  
  30.   virtual glrduck::~glrduck();
  31.  
  32.   void createWindows();
  33.  
  34. protected:
  35.  
  36. private:
  37.   static XtResource _resources [];
  38.   static  XrmOptionDescRec cmdLineOptions[];
  39.  
  40.   glrduckMainWindow *_vkwindow;
  41. };
  42. #endif
  43.